home *** CD-ROM | disk | FTP | other *** search
/ Champak 109 / Vol 109.iso / games / chick000.swf / scripts / frame_11 / DoAction.as
Text File  |  2008-11-12  |  451b  |  21 lines

  1. if(_root.score < 10 and _root.score > 0)
  2. {
  3.    _root.score = "00000" + _root.score;
  4. }
  5. if(_root.score < 100 and _root.score > 9)
  6. {
  7.    _root.score = "0000" + _root.score;
  8. }
  9. if(_root.score < 1000 and _root.score > 99)
  10. {
  11.    _root.score = "000" + _root.score;
  12. }
  13. if(_root.score < 10000 and _root.score > 999)
  14. {
  15.    _root.score = "00" + _root.score;
  16. }
  17. if(_root.score < 100000 and _root.score > 9999)
  18. {
  19.    _root.score = "0" + _root.score;
  20. }
  21.